<% select case style
case "hsx"%>
Title
">
">
|
Date
">
">
|
Scrn
">
">
|
Pre
">
">
|
Open
">
">
|
4 Week
">
">
|
Mult
">
">
|
<% case "open"%>
Title
">
">
|
Date
">
">
|
Hol
">
">
|
Scrn
">
">
|
Pre
">
">
|
Open
">
">
|
Adj inf
">
">
|
PSA
">
">
|
1st Fri
">
">
|
Int mult
">
">
|
Posn
">
">
|
<% case "bo"%>
Title
">
">
|
Date
">
">
|
Scrn
">
">
|
Pre
">
">
|
Open
">
">
|
Total
">
">
|
Adj total
">
">
|
Mult
">
">
|
Peak posn
">
">
|
Weeks@peak
">
">
|
<% case "full"%>
Title
">
">
|
Studio
">
">
|
Rating
">
">
|
Length
">
">
|
Scrn
">
">
| Date
">
">
|
Hol
">
">
|
Open
">
">
|
Total
">
">
|
<% end select %>
<%
xstart = Cint(request.querystring("xstart"))
xpage = Cint(request.querystring("xpage"))
xend = xstart + xpage
count = 1
do while count < xstart
mydata.movenext
count = count + 1
loop
do while not mydata.eof and count < xend
if isnull(mydata("t")) then
l = " "
else l= cstr(mydata("t"))
end if
if isnull(mydata("rat")) then
rat = " "
else rat= cstr(mydata("rat"))
end if
if isnull(mydata("st")) then
std = " "
else std= cstr(mydata("st"))
end if
if isnull(mydata("tmult")) then
tmult = " "
else tmult= cstr(mydata("tmult"))
end if
if isnull(mydata("total")) then
total = " "
else total= cstr(mydata("total"))
end if
if isnull(mydata("inftotal")) then
inftotal = " "
else inftotal= cstr(mydata("inftotal"))
end if
if isnull(mydata("pk")) then
pk = " "
else pk= cstr(mydata("pk"))
end if
if isnull(mydata("at")) then
xat= " "
else xat= cstr(mydata("at"))
end if
if isnull(mydata("infopen")) then
infopen = " "
else infopen= cstr(mydata("infopen"))
end if
if isnull(mydata("psa")) then
psa = " "
else psa = cstr(mydata("psa"))
end if
if isnull(mydata("wknd")) then
wknd = " "
else wknd = cstr(mydata("wknd"))
end if
if isnull(mydata("x1stfri")) then
x1stfri = " "
else x1stfri = cstr(mydata("x1stfri"))
end if
if isnull(mydata("op")) then
op = " "
else op = cstr(mydata("op"))
end if
if isnull(mydata("f2s")) then
f2s = " "
else f2s = cstr(mydata("f2s"))
end if
if isnull(mydata("pre")) then
pre = " "
else pre = cstr(mydata("pre"))
end if
if isnull(mydata("movie")) then
movie = " "
else movie = "" + mydata("movie") + ""
end if
if isnull(mydata("m")) or isnull(mydata("d")) or isnull(mydata("y")) then
xdate = " "
else xdate = cstr(mydata("m")) + "/" + cstr(mydata("d")) + "/" + right(cstr(mydata("y")),2)
end if
if isnull(mydata("scr")) then
scr = " "
else scr = cstr(mydata("scr"))
end if
if isnull(mydata("opn")) then
xopen = " "
else xopen = cstr(mydata("opn"))
end if
if isnull(mydata("x4week")) then
x4week = " "
else x4week = cstr(mydata("x4week"))
end if
if isnull(mydata("mult")) then
mult = " "
else mult = cstr(mydata("mult"))
end if
If Eval(count\2 = count/2) Then
response.write ""
Else
response.write "
"
end if
select case style
case "hsx"
%>
<% response.write movie %>
|
<% response.write xdate %>
|
<% response.write scr %>
|
<% response.write pre %>
|
<% response.write xopen %>
|
<% response.write x4week %>
|
<% response.write mult %>
|
<% case "open" %>
<% response.write movie %>
|
<% response.write xdate %>
|
<% response.write wknd %>
|
<% response.write scr %>
|
<% response.write pre %>
|
<% response.write xopen %>
|
<% response.write infopen %>
|
<% response.write psa %>
|
<% response.write x1stfri %>
|
<% response.write f2s %>
|
<% response.write op %>
|
<% case "bo" %>
<% response.write movie %>
|
<% response.write xdate %>
|
<% response.write scr %>
|
<% response.write pre %>
|
<% response.write xopen %>
|
<% response.write total %>
|
<% response.write inftotal %>
|
<% response.write tmult %>
|
<% response.write pk %>
|
<% response.write xat %>
|
<% case "full" %>
<% response.write movie %>
|
<% response.write std %>
|
<% response.write rat %>
|
<% response.write l %>
|
<% response.write scr %>
|
<% response.write xdate %>
|
<% response.write wknd %>
|
<% response.write xopen %>
|
<% response.write total %>
|
<% end select
mydata.movenext
count = count + 1
loop
fin = count
do while not mydata.eof
mydata.movenext
count = count + 1
loop
%>